home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / plotting / imagetoo / imagetl1.lha / Imagetool / headers / all.h next >
Encoding:
C/C++ Source or Header  |  1990-09-20  |  2.4 KB  |  85 lines

  1. /*
  2. ******************************************************************************
  3. *                               NCSA ImageTool 1.1 beta
  4. *                           Thu Sep 20 16:58:25 CDT 1990
  5. * NCSA ImageTool 1.1 beta source code and documentation are in the public
  6. * domain.
  7. * Specifically, we give to the public domain all rights for future licensing
  8. * of the source code, all resale rights, and all publishing rights.
  9. * We ask, but do not require, that the following message be included in all
  10. * derived works:
  11. * Portions developed at the National Center for Supercomputing Applications at
  12. * the University of Illinois at Urbana-Champaign.
  13. * THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE
  14. * SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION,
  15. * WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE
  16. ******************************************************************************
  17. */
  18. /* cat > headers/all.h << "EOF" */
  19. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  20. /* all.h: common include files for ImageTool 1.1    */
  21. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  22. /* SCCS information: %W%    %G% */
  23.  
  24. #ifndef HEADER_ALL        /* avoid reinclusion */
  25. #define HEADER_ALL
  26.  
  27. #include <stdio.h>
  28.  
  29. /* ~~~~~~~~~~~~~~~~~~~~ 1.1 additions ~~~~~~~~~~~~~~~~~~~~ */
  30.  
  31. #if sun
  32. #if i386 || i486
  33. #define SUN386
  34. #elif mc68000 || mc68010 || mc68020 || mc68030 || sparc
  35. #define SUN
  36. #endif
  37. #endif
  38.  
  39. #include "df.h"
  40. #include "dfgr.h"
  41. #include "dfsd.h"
  42.  
  43. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ 
  44.  
  45. #include <suntool/sunview.h> 
  46. #include <suntool/panel.h>
  47. #include <suntool/canvas.h>
  48. #include <suntool/scrollbar.h>
  49. #include <suntool/tty.h>
  50. #include <suntool/textsw.h>
  51. #include <suntool/seln.h>
  52. #include <pixrect/pixrect.h>
  53. #include <pixrect/pixfont.h>
  54. #include <sys/file.h>
  55. #include <sys/dir.h>
  56. #include <sys/param.h>
  57. #include <sys/stat.h>
  58. #include <sys/time.h>
  59. #include <sys/types.h>
  60. #include <math.h>
  61. #include <ctype.h>
  62. #include <pwd.h>
  63. #include <string.h>        /* SUN BUG (386i - 4.0.1)! Cannot put
  64.                    string.h after sunwindow/defaults.h.
  65.                    ERRORS! */
  66.  
  67. /* ~~~~~~~~~~~~~~~~~~~~ 1.1 additions ~~~~~~~~~~~~~~~~~~~~ */
  68.  
  69. #include <sunwindow/defaults.h>        /* for defaults database */
  70.  
  71. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ 
  72.  
  73. #include    "const.h"
  74. #include    "struct.h"
  75. #include    "extvar.h"
  76. #include    "extfunc.h"
  77.  
  78. #endif    /* HEADER_ALL */
  79. /* EOF */
  80.